/*
	Coin Slider jQuery plugin CSS styles
	http://workshop.rs/projects/coin-slider
*/
.coin-slider { zoom: 1; position: relative; }
.coin-slider a{ text-decoration: none; outline: none; border: none; }

.cs-active { background-color: #B8C4CF; color: #FFFFFF; }

.cs-title { 
	box-sizing: border-box; 
	-moz-box-sizing: border-box;
	width: 100%; 
	padding: 10px; 
	background-color: #000000; 
	color: #FFFFFF; 
}

.cs-prev, 
.cs-next { background-color: #000000; color: #FFFFFF; padding: 0px 10px; }

.cs-buttons { 
	font-size: 0px; 
	padding: 10px 0; 
	line-height: 10px;
	float: left; 
	width: 100%;
	text-align: center;
	left: auto !important;
	margin-left: 0 !important;
}
.cs-buttons a {
	margin-left: 5px;
	height: 10px; 
	width: 10px; 
	border: 1px solid #B8C4CF; 
	color: #B8C4CF; 
	text-indent: -1000px; 
	border-radius: 50%;
	background: #CCC;
	background: -webkit-linear-gradient(top, #CCCCCC, #F3F3F3);
	background: -moz-linear-gradient(top, #CCCCCC, #F3F3F3);
	background: -o-linear-gradient(top, #CCCCCC, #F3F3F3);
	background: -ms-linear-gradient(top, #CCCCCC, #F3F3F3);
	background: linear-gradient(top, #CCCCCC, #F3F3F3);
	display: inline-block;
	text-align: center;
}
.cs-buttons a.cs-active {
	background: #599BDC;
	background: -webkit-linear-gradient(top, #599BDC, #3072B3);
	background: -moz-linear-gradient(top, #599BDC, #3072B3);
	background: -o-linear-gradient(top, #599BDC, #3072B3);
	background: -ms-linear-gradient(top, #599BDC, #3072B3);
	background: linear-gradient(top, #599BDC, #3072B3);
	border-radius: 50%;
	box-shadow: 0 0 3px #518CC6;
	border: 1px solid #3072B3;
}